Document Solutions for Word
DS.Documents.Word Assembly / GrapeCity.Documents.Word Namespace / TableCollection Class / Insert Method / Insert(String[],Style,InsertLocation) Method
A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second the number of cells.
The table style.
The target InsertLocation for the insertion.

In This Topic
    Insert(String[],Style,InsertLocation) Method
    In This Topic
    Inserts a Table into this collection at a specified location.
    Syntax
    'Declaration
     
    Public Overloads Function Insert( _
       ByVal texts() As System.String, _
       ByVal style As Style, _
       ByVal location As InsertLocation _
    ) As Table
    public Table Insert( 
       System.string[] texts,
       Style style,
       InsertLocation location
    )

    Parameters

    texts
    A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second the number of cells.
    style
    The table style.
    location
    The target InsertLocation for the insertion.

    Return Value

    The inserted Table.
    See Also